Ambari 之 License 管理
声明:博主写了一些 Ambari 系列文章,可以在历史文章中查看。
1. 在 admin 菜单栏增加一个选项
1
2
3
4
5
6
7
8
9
10
11# 路径:
/app/views/main/menu.js
# 第 148 行添加:
// license 管理
if (true) {
categories.push({
name: 'ServiceLicense',
url: 'ServiceLicense',
label: 'License Management'
//disabled: App.get('upgradeInProgress') || App.get('upgradeHolding')
});}
2. 左侧菜单栏增加一个选项
1
2
3
4
5
6
7
8
9
10
11# 路径:
/app/views/main/admin.js
# 第 61 行添加:
// license 管理
if (true) {
items.push({
name: 'ServiceLicense',
url: 'adminServiceLicense',
label: 'License Management'
disabled: App.get('upgradeInProgress') || App.get('upgradeHolding')
});}
3. 编写页面
1 | # 路径: |
4. 完成 mvc 逻辑操作
1 | # view 的路径: |
1 | # controller 的路径 |
1 | # 路由 |
1 | # 目录: |
1 | # 目录: |
5. 成品
点关注,不迷路
好了各位,以上就是这篇文章的全部内容了,能看到这里的人呀,都是人才。
白嫖不好,创作不易。各位的支持和认可,就是我创作的最大动力,我们下篇文章见!
如果本篇博客有任何错误,请批评指教,不胜感激 !
原文作者: create17
原文链接: https://841809077.github.io/2018/03/20/Ambari/ambari web 二次开发/Ambari之License管理.html
版权声明: 转载请注明出处(码字不易,请保留作者署名及链接,谢谢配合!)